home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / kill.c < prev    next >
C/C++ Source or Header  |  1989-04-19  |  1KB  |  66 lines

  1. /* 
  2.  * kill.c --
  3.  *
  4.  *    Procedure to map from Unix kill system call to Sprite Sig_Send call.
  5.  *    Note: many Unix signals are not supported under Sprite.
  6.  *
  7.  * Copyright 1986 Regents of the University of California
  8.  * All rights reserved.
  9.  */
  10.  
  11. #ifndef lint
  12. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/kill.c,v 1.2 89/04/19 17:07:12 ouster Exp $ SPRITE (Berkeley)";
  13. #endif not lint
  14.  
  15. #include "sprite.h"
  16. #include "sig.h"
  17.  
  18. #include "compatInt.h"
  19. #include "proc.h"
  20. #include <signal.h>
  21. #include <errno.h>
  22.  
  23.  
  24. /*
  25.  *----------------------------------------------------------------------
  26.  *
  27.  * kill --
  28.  *
  29.  *    Procedure to map from Unix kill system call to Sprite 
  30.  *    Sig_Send.
  31.  *
  32.  * Results:
  33.  *    UNIX_ERROR is returned upon error, with the actual error code
  34.  *    stored in errno.
  35.  *
  36.  * Side effects:
  37.  *    None.
  38.  *
  39.  *----------------------------------------------------------------------
  40.  */
  41.  
  42. int
  43. kill(pid, sig)
  44.     int pid;
  45.     int sig;
  46. {
  47.     ReturnStatus status;
  48.     int         spriteSignal;
  49.  
  50.     if (pid == 0) {
  51.     return killpg(getpgrp(0), sig);
  52.     }
  53.     status = Compat_UnixSignalToSprite(sig, &spriteSignal);
  54.     if (status == FAILURE || (spriteSignal == NULL && sig != 0)) {
  55.     errno = EINVAL;
  56.     return(UNIX_ERROR);
  57.     }
  58.     status = Sig_Send(spriteSignal, pid, FALSE);
  59.     if (status != SUCCESS) {
  60.     errno = Compat_MapCode(status);
  61.     return(UNIX_ERROR);    
  62.     } else {
  63.     return(UNIX_SUCCESS);
  64.     }
  65. }
  66.